All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ButtonCell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Cell
                   |
                   +----com.apple.alpha.app.ActionCell
                           |
                           +----com.apple.alpha.app.ButtonCell

public class ButtonCell
extends ActionCell
This class wraps the Objective-C class NSButtonCell.


Constructor Index

 o ButtonCell()
This default constructor is equivalent to Objective-C's [[NSButtonCell alloc] init].
 o ButtonCell(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o ButtonCell(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o alternateImage()
A wrapper for the - alternateImage Objective-C instance method.
 o alternateMnemonic()
A wrapper for the - alternateMnemonic Objective-C instance method.
 o alternateMnemonicLocation()
A wrapper for the - alternateMnemonicLocation Objective-C instance method.
 o alternateTitle()
A wrapper for the - alternateTitle Objective-C instance method.
 o attributedAlternateTitle()
A wrapper for the - attributedAlternateTitle Objective-C instance method.
 o attributedTitle()
A wrapper for the - attributedTitle Objective-C instance method.
 o bezelStyle()
A wrapper for the - bezelStyle Objective-C instance method.
 o gradientType()
A wrapper for the - gradientType Objective-C instance method.
 o highlightsBy()
A wrapper for the - highlightsBy Objective-C instance method.
 o imageDimsWhenDisabled()
A wrapper for the - imageDimsWhenDisabled Objective-C instance method.
 o imagePosition()
A wrapper for the - imagePosition Objective-C instance method.
 o isOpaque()
A wrapper for the - isOpaque Objective-C instance method.
 o isTransparent()
A wrapper for the - isTransparent Objective-C instance method.
 o keyEquivalent()
A wrapper for the - keyEquivalent Objective-C instance method.
 o keyEquivalentFont()
A wrapper for the - keyEquivalentFont Objective-C instance method.
 o keyEquivalentModifierMask()
A wrapper for the - keyEquivalentModifierMask Objective-C instance method.
 o performClick(Object)
A wrapper for the - performClick: Objective-C instance method.
 o setAlternateImage(Image)
A wrapper for the - setAlternateImage: Objective-C instance method.
 o setAlternateMnemonicLocation(int)
A wrapper for the - setAlternateMnemonicLocation: Objective-C instance method.
 o setAlternateTitle(String)
A wrapper for the - setAlternateTitle: Objective-C instance method.
 o setAlternateTitleWithMnemonic(String)
A wrapper for the - setAlternateTitleWithMnemonic: Objective-C instance method.
 o setAttributedAlternateTitle(AttributedString)
A wrapper for the - setAttributedAlternateTitle: Objective-C instance method.
 o setAttributedTitle(AttributedString)
A wrapper for the - setAttributedTitle: Objective-C instance method.
 o setButtonType(int)
A wrapper for the - setButtonType: Objective-C instance method.
 o setFont(Font)
A wrapper for the - setFont: Objective-C instance method.
 o setGradientType(int)
A wrapper for the - setGradientType: Objective-C instance method.
 o setHighlightsBy(int)
A wrapper for the - setHighlightsBy: Objective-C instance method.
 o setImageDimsWhenDisabled(boolean)
A wrapper for the - setImageDimsWhenDisabled: Objective-C instance method.
 o setImagePosition(int)
A wrapper for the - setImagePosition: Objective-C instance method.
 o setKeyEquivalent(String)
A wrapper for the - setKeyEquivalent: Objective-C instance method.
 o setKeyEquivalentFont(Font)
A wrapper for the - setKeyEquivalentFont: Objective-C instance method.
 o setKeyEquivalentFontAndSize(String, float)
A wrapper for the - setKeyEquivalentFont:size: Objective-C instance method.
 o setKeyEquivalentModifierMask(int)
A wrapper for the - setKeyEquivalentModifierMask: Objective-C instance method.
 o setPeriodicDelayAndInterval(float, float)
A wrapper for the - setPeriodicDelay:interval: Objective-C instance method.
 o setShowsStateBy(int)
A wrapper for the - setShowsStateBy: Objective-C instance method.
 o setTitle(String)
A wrapper for the - setTitle: Objective-C instance method.
 o setTitleWithMnemonic(String)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.
 o setTransparent(boolean)
A wrapper for the - setTransparent: Objective-C instance method.
 o showsStateBy()
A wrapper for the - showsStateBy Objective-C instance method.
 o title()
A wrapper for the - title Objective-C instance method.

Constructors

 o ButtonCell
 protected ButtonCell(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o ButtonCell
 public ButtonCell()
This default constructor is equivalent to Objective-C's [[NSButtonCell alloc] init].

 o ButtonCell
 public ButtonCell(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Methods

 o title
 public native String title()
A wrapper for the - title Objective-C instance method.

 o setTitle
 public native void setTitle(String aString)
A wrapper for the - setTitle: Objective-C instance method.

 o alternateTitle
 public native String alternateTitle()
A wrapper for the - alternateTitle Objective-C instance method.

 o setAlternateTitle
 public native void setAlternateTitle(String aString)
A wrapper for the - setAlternateTitle: Objective-C instance method.

 o alternateImage
 public native Image alternateImage()
A wrapper for the - alternateImage Objective-C instance method.

 o setAlternateImage
 public native void setAlternateImage(Image image)
A wrapper for the - setAlternateImage: Objective-C instance method.

 o imagePosition
 public native int imagePosition()
A wrapper for the - imagePosition Objective-C instance method.

 o setImagePosition
 public native void setImagePosition(int aPosition)
A wrapper for the - setImagePosition: Objective-C instance method.

 o highlightsBy
 public native int highlightsBy()
A wrapper for the - highlightsBy Objective-C instance method.

 o setHighlightsBy
 public native void setHighlightsBy(int aType)
A wrapper for the - setHighlightsBy: Objective-C instance method.

 o showsStateBy
 public native int showsStateBy()
A wrapper for the - showsStateBy Objective-C instance method.

 o setShowsStateBy
 public native void setShowsStateBy(int aType)
A wrapper for the - setShowsStateBy: Objective-C instance method.

 o setButtonType
 public native void setButtonType(int aType)
A wrapper for the - setButtonType: Objective-C instance method.

 o isOpaque
 public native boolean isOpaque()
A wrapper for the - isOpaque Objective-C instance method.

Overrides:
isOpaque in class Cell
 o setFont
 public native void setFont(Font fontObj)
A wrapper for the - setFont: Objective-C instance method.

Overrides:
setFont in class ActionCell
 o isTransparent
 public native boolean isTransparent()
A wrapper for the - isTransparent Objective-C instance method.

 o setTransparent
 public native void setTransparent(boolean flag)
A wrapper for the - setTransparent: Objective-C instance method.

 o setPeriodicDelayAndInterval
 public native void setPeriodicDelayAndInterval(float delay,
                                                float interval)
A wrapper for the - setPeriodicDelay:interval: Objective-C instance method.

 o keyEquivalent
 public native String keyEquivalent()
A wrapper for the - keyEquivalent Objective-C instance method.

Overrides:
keyEquivalent in class Cell
 o setKeyEquivalent
 public native void setKeyEquivalent(String aKeyEquivalent)
A wrapper for the - setKeyEquivalent: Objective-C instance method.

 o keyEquivalentModifierMask
 public native int keyEquivalentModifierMask()
A wrapper for the - keyEquivalentModifierMask Objective-C instance method.

 o setKeyEquivalentModifierMask
 public native void setKeyEquivalentModifierMask(int mask)
A wrapper for the - setKeyEquivalentModifierMask: Objective-C instance method.

 o keyEquivalentFont
 public native Font keyEquivalentFont()
A wrapper for the - keyEquivalentFont Objective-C instance method.

 o setKeyEquivalentFont
 public native void setKeyEquivalentFont(Font fontObj)
A wrapper for the - setKeyEquivalentFont: Objective-C instance method.

 o setKeyEquivalentFontAndSize
 public native void setKeyEquivalentFontAndSize(String fontName,
                                                float fontSize)
A wrapper for the - setKeyEquivalentFont:size: Objective-C instance method.

 o performClick
 public native void performClick(Object sender)
A wrapper for the - performClick: Objective-C instance method.

Overrides:
performClick in class Cell
 o setTitleWithMnemonic
 public native void setTitleWithMnemonic(String stringWithAmpersand)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.

Overrides:
setTitleWithMnemonic in class Cell
 o setAlternateTitleWithMnemonic
 public native void setAlternateTitleWithMnemonic(String stringWithAmpersand)
A wrapper for the - setAlternateTitleWithMnemonic: Objective-C instance method.

 o setAlternateMnemonicLocation
 public native void setAlternateMnemonicLocation(int location)
A wrapper for the - setAlternateMnemonicLocation: Objective-C instance method.

 o alternateMnemonicLocation
 public native int alternateMnemonicLocation()
A wrapper for the - alternateMnemonicLocation Objective-C instance method.

 o alternateMnemonic
 public native String alternateMnemonic()
A wrapper for the - alternateMnemonic Objective-C instance method.

 o gradientType
 public native int gradientType()
A wrapper for the - gradientType Objective-C instance method.

 o setGradientType
 public native void setGradientType(int type)
A wrapper for the - setGradientType: Objective-C instance method.

 o setImageDimsWhenDisabled
 public native void setImageDimsWhenDisabled(boolean flag)
A wrapper for the - setImageDimsWhenDisabled: Objective-C instance method.

 o imageDimsWhenDisabled
 public native boolean imageDimsWhenDisabled()
A wrapper for the - imageDimsWhenDisabled Objective-C instance method.

 o attributedTitle
 public native AttributedString attributedTitle()
A wrapper for the - attributedTitle Objective-C instance method.

 o setAttributedTitle
 public native void setAttributedTitle(AttributedString obj)
A wrapper for the - setAttributedTitle: Objective-C instance method.

 o attributedAlternateTitle
 public native AttributedString attributedAlternateTitle()
A wrapper for the - attributedAlternateTitle Objective-C instance method.

 o setAttributedAlternateTitle
 public native void setAttributedAlternateTitle(AttributedString obj)
A wrapper for the - setAttributedAlternateTitle: Objective-C instance method.

 o bezelStyle
 public native int bezelStyle()
A wrapper for the - bezelStyle Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index